home *** CD-ROM | disk | FTP | other *** search
- /*
- File: KoreanAnalysis.h
- Contains: class KoreanAnalysis
- Copyright: © 1994 - 1998 by Apple Computer, Inc., all rights reserved.
- */
-
- #pragma once
- #ifndef TwoByteAnalysis_h
- #define TwoByteAnalysis_h
-
- #pragma import on
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=power
- #endif
-
- #include "IAAnalysis.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- const uint32 KoreanAnalysisType = 'Kor1';
-
- class KoreanAnalysis : public IAAnalysis {
- public:
- KoreanAnalysis() : IAAnalysis(KoreanAnalysisType) {}
-
- IATokenStream* MakeTokenStream(IADocText* text);
- IATerm* GetProtoTerm();
- };
-
- #pragma IA_END_EXPORTS
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=reset
- #endif
-
- #pragma import reset
-
- #endif
-